home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / adoc2140.zip / BUGFIX.TXT < prev    next >
Text File  |  1994-09-26  |  1KB  |  32 lines

  1. Overview:
  2.     A Word 6.0 syntax error is encountered when attempting to format
  3.     extraction files that contains a prefact.  This syntax error was due
  4.     to the use of a Word 2.0 function in one of the formatting routines.
  5.     To fix this problem, simply copy API8x11.DOT and API7x9.DOT to the
  6.     WORD60 subdirectory of the AUTODOC runtime directory.
  7.  
  8. Details:
  9.     Both of these DOT files have a macro named APIFormatBuffer.  This is the
  10.     macro which actually does the work of formatting a file once it is
  11.     loaded into a document window.
  12.  
  13.     The problem was in the ChapterPreface function of this macro.  While
  14.     processing the preface text, the following Word 2.0 call was made.
  15.  
  16.             InsertBookmark.Name = "PrefaceStart"
  17.  
  18.     This line caused the Err=100 Syntax Error that was reported.
  19.  
  20.     To resolve the problem, this line wsa changed to the following Word 6.0
  21.     function call.
  22.  
  23.             EditBookmark("PrefaceStart")
  24.  
  25.     After making this change, the preface text formats properly.
  26.  
  27.  
  28.  
  29.  
  30.  
  31. 09/26/94
  32.